home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{239D6AE1-31D1-11D1-B2DE-444553540000}#1.0#0"; "ANIFORM.OCX"
- Begin VB.Form Form1
- BorderStyle = 3 'Fixed Dialog
- Caption = "Animation Form Icon ActiveX Demo"
- ClientHeight = 1920
- ClientLeft = 1095
- ClientTop = 1485
- ClientWidth = 6240
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- PaletteMode = 1 'UseZOrder
- ScaleHeight = 1920
- ScaleWidth = 6240
- Begin VB.CommandButton Command2
- Caption = "Stop"
- Height = 495
- Left = 4440
- TabIndex = 1
- Top = 1080
- Width = 1575
- End
- Begin VB.CommandButton Command1
- Caption = "Play"
- Height = 495
- Left = 4440
- TabIndex = 0
- Top = 360
- Width = 1575
- End
- Begin AniForm.AniForm AniForm1
- Left = 4800
- OleObjectBlob = "VB5Demo.frx":0000
- Top = 120
- End
- Begin VB.Label Label1
- Caption = "Animation Form Icon ActiveX"
- Height = 1215
- Left = 240
- TabIndex = 2
- Top = 360
- Width = 3975
- End
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- AniForm1.Play
- End Sub
- Private Sub Command2_Click()
- AniForm1.Stop
- End Sub
- Private Sub Form_Load()
- t = "Animation Form Icon ActiveX 1.00c" & Chr(10) & Chr(13)
- t = t & "Copyright (C) 1997, Jin Hui" & Chr(10) & Chr(13)
- t = t & Chr(10) & Chr(13)
- t = t & "E-mail: shjh@usa.net" & Chr(10) & Chr(13)
- t = t & "Homepage: http://www.toptown.com/nowhere/jinhui"
- Label1 = t
- AniForm1.hWnd = Form1.hWnd
- AniForm1.Play
- End Sub
-